fix: docker-compose.prod.yml 경로 및 서버 설정 동기화#55
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Code Review
This pull request updates the production Docker Compose configuration by relocating it to the docker/ directory, adjusting volume paths for Fluent Bit, removing external port access for the PostgreSQL service, and updating the environment file path. A review comment points out that the Fluent Bit volume paths likely need to be updated to reference the parent directory (../fluent-bit/) to correctly locate the configuration files from the new directory structure.
| - ./fluent-bit/fluent-bit.conf:/fluent-bit/etc/fluent-bit.conf:ro | ||
| - ./fluent-bit/parsers.conf:/fluent-bit/etc/parsers.conf:ro |
There was a problem hiding this comment.
docker-compose.prod.yml 파일이 docker/ 디렉토리로 이동함에 따라 설정 파일들의 상대 경로를 확인해야 합니다. 만약 fluent-bit 설정 폴더가 프로젝트 루트에 위치한다면, 경로를 ../fluent-bit/...로 수정해야 합니다. 현재 설정된 ./fluent-bit/는 docker/fluent-bit/ 디렉토리를 가리키므로 파일을 찾지 못할 수 있습니다. 또한 폴더명이 fluentbit에서 fluent-bit으로 변경되었는지도 함께 확인해 주세요.
- ../fluent-bit/fluent-bit.conf:/fluent-bit/etc/fluent-bit.conf:ro
- ../fluent-bit/parsers.conf:/fluent-bit/etc/parsers.conf:ro
📝 작업 내용 (Description)
docker-compose.prod.yml 경로 및 서버 설정 동기화
🔄 변경 유형 (Type of Change)
✅ 체크리스트 (Checklist)